home *** CD-ROM | disk | FTP | other *** search
- ;HideUser.ppe
- ;Ver. 1
- ;By: Francis "gorilla" Amato
- ;
- ;Changes Alias. Done to "hide" identity without the hassle of going thru
- ;the whole "W"rite user thing.
- ;
- ;NOTE: ALIAS PSA MUST be installed. If not, the PPE aborts.
- ;
- ;I use it in my FLAMING base. Tho handles are used on my BBS, it breeds less
- ;badwill if the poster of a flame in that base remains unknown.
- ;
- ;You can, of course, use it in any base(es) you wish
- ;
- ;I display the text message hardcoded into this PPS. You might wish to
- ;change it. Up to you (as everything is with my user-friendly PPE's)
- ;
- ;INSTALL: Assign the PPE in CMDLIST to whatever name you want. I call it
- ;(amazingly enough) ALIAS and put the keyword ALIAS on my menu screen for
- ;the flaming base.
-
- string aliasname, yn
- getuser
-
- ;Check and see if Alias PSA is installed. If not, end
- if (PSA(1)=1) goto OK
- end
-
- :OK
- CLS
- println "@X07You can now enter an @X0FALIAS@X07. This `alias' will go into effect when"
- println "@X0F @X07you enter an area that allows them. When you leave that area,"
- println "@X0F @X07your `real' name is restored."
- println "You are probably already using a handle to call here. This `alias'"
- println " is, in effect, a @X0FSECOND @X07handle."
- println ""
- println "You do @X0FNOT @X07have to choose an alias if you don't want one."
- println "You can only chose @X0FONE @X07Alias. That alias is active in @X0FALL @X07alias bases."
- println ""
- println "Currently, the only base you can use an alias in is the @X0FFLAMING @X07base."
- println " You may not wish others to `know' who you are in that base."
- println ""
- println "Your @X0DCURRENT@X07 Alias is @X0D" , U_Alias
- println ""
- inputstr "Would you like to choose or change your alias (Y/N)",yn, @X0C, 1, "YN", Upcase
- if (yn="N") end
-
- println ""
- input "@X0FALIAS @X07name (Enter=@X0FCURRENT @X07name) ",AliasName
- Let U_Alias=Aliasname
- putuser
- end